Description
Used to symbolize polygon features.
Diagram
Overview
|
|
backgroundcolor optional xs:string
|
|
boundarycolor optional Restriction of xs:string
|
|
boundarytransparency optional Restriction of xs:double
|
|
boundarytype optional Restriction of xs:string
Boundary type.
|
|
boundarywidth optional Restriction of xs:double
Boundary width in points.
|
|
fillcolor optional Restriction of xs:string
Fill color.
|
|
filltransparency optional Restriction of xs:double
Value to set percentage of transparency for the polygon fill. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
|
|
filltype optional Restriction of xs:string
Symbol fill type.
|
|
stippleheight optional Restriction of xs:int
Height of the stipple in pixels.
|
|
stipplepattern optional xs:string
Hexadecimal 8X8 mono bitmap pattern.
|
|
stipplewidth optional Restriction of xs:int
Number of columns in the stipple.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
backgroundcolor | xs:string | optional | | | |
boundarycolor | Restriction of xs:string | optional | | | |
boundarytransparency | Restriction of xs:double | optional | 1.0 | | |
boundarytype | Restriction of xs:string | optional | solid | | Boundary type. |
boundarywidth | Restriction of xs:double | optional | 1 | | Boundary width in points. |
fillcolor | Restriction of xs:string | optional | | | Fill color. |
filltransparency | Restriction of xs:double | optional | 1 | | Value to set percentage of transparency for the polygon fill. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent. |
filltype | Restriction of xs:string | optional | solid | | Symbol fill type. |
stippleheight | Restriction of xs:int | optional | 8 | | Height of the stipple in pixels. |
stipplepattern | xs:string | optional | | | Hexadecimal 8X8 mono bitmap pattern. |
stipplewidth | Restriction of xs:int | optional | 8 | | Number of columns in the stipple. |
Examples
Restrictions
The stipplepattern, stippleheight, and stipplewidth attrubutes can only be used when the filltype is opaquestipple or stipple.
Source
<xs:element name="SIMPLEPOLYGONSYMBOL" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to symbolize polygon features.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute ref="backgroundcolor">
<xs:annotation>
<xs:documentation>Background color.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boundarycolor">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="RGB" />
<xs:enumeration value="HTML RGB" />
<xs:enumeration value="HTML Name" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="1.0" name="boundarytransparency">
<xs:simpleType>
<xs:restriction base="xs:double">
<xs:enumeration value="0.0" />
<xs:enumeration value="1.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="boundarytype" default="solid">
<xs:annotation>
<xs:documentation>Boundary type.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="solid" />
<xs:enumeration value="dash" />
<xs:enumeration value="dot" />
<xs:enumeration value="dashdot" />
<xs:enumeration value="dashdotdot" />
<xs:enumeration value="null" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="boundarywidth" default="1">
<xs:annotation>
<xs:documentation>Boundary width in points.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:double">
<xs:minInclusive value="0.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="fillcolor">
<xs:annotation>
<xs:documentation>Fill color.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="RGB" />
<xs:enumeration value="HTML RGB" />
<xs:enumeration value="HTML Name" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="filltransparency" default="1">
<xs:annotation>
<xs:documentation>Value to set percentage of transparency for the polygon fill. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:double">
<xs:minInclusive value="0.0" />
<xs:maxInclusive value="1.0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="filltype" default="solid">
<xs:annotation>
<xs:documentation>Symbol fill type.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="solid" />
<xs:enumeration value="opaquestipple" />
<xs:enumeration value="stipple" />
<xs:enumeration value="bdiagonal" />
<xs:enumeration value="fdiagonal" />
<xs:enumeration value="cross" />
<xs:enumeration value="diagcross" />
<xs:enumeration value="horizontal" />
<xs:enumeration value="vertical" />
<xs:enumeration value="gray" />
<xs:enumeration value="lightgray" />
<xs:enumeration value="darkgray" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="stippleheight" default="8">
<xs:annotation>
<xs:documentation>Height of the stipple in pixels.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="stipplepattern" type="xs:string">
<xs:annotation>
<xs:documentation>Hexadecimal 8X8 mono bitmap pattern.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="stipplewidth" default="8">
<xs:annotation>
<xs:documentation>Number of columns in the stipple.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:minInclusive value="1" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also